home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / infoserv / www / cern / doc / www-talk.archive.Z / www-talk.archive / text0324.txt < prev    next >
Encoding:
Text File  |  1992-11-30  |  1.9 KB  |  61 lines

  1. I keep running across interesting bits of evidence that tell me that
  2. indexes should be a type of link rather than a type of document.
  3.  
  4. In the current WWW model, an index is a document with an <ISINDEX>
  5. tag. The browser displays the document, recognizes the <ISINDEX> tag,
  6. and provides a search/find/keyword command. The user invokes the
  7. search command and supplies the seed words. The browser conducts the
  8. search transaction and displays the results. Then the user chooses
  9. from the results.
  10.  
  11. In the model I prefer (which is used by gopher currently), and index
  12. is an anchor with an INDEX attribute. The user selects the anchor, and
  13. the browser prompts for seed words. The user supplies the seed words,
  14. and the browser conducts the transaction as above.
  15.  
  16. In the WWW model, I run into lots of documents that just say "this is
  17. a searchable index." Some index documents have instructions and
  18. summaries of contents, but most are generated by gateways.
  19.  
  20. The WWW model actually fits inside the gopher model: where you would
  21. use a document with an <ISINDEX> tag, use a document with an INDEX
  22. anchor.
  23.  
  24. But the gopher model is more versatile. You can have one document
  25. point to multiple indexes. You can have one set of instructions for
  26. lots of indexes.
  27.  
  28. For example:
  29.  
  30.     WAIS based information
  31.  
  32. Click here[1] for instructions.
  33.  
  34.     directory of servers    search[2] describe[3]
  35.     RFC's            search[4] describe[5]
  36.     README's        search[6] describe[7]
  37.  
  38. which might look like:
  39.  
  40. <!DOCTYPE HTML SYSTEM>
  41. <TITLE>WAIS based information</TITLE>
  42. <a HREF="wais_help.html">Click here</a> for instructions.
  43. <p>
  44. <dl>
  45. <dt>directory of servers
  46. <dd><a HREF="wais://quake.think.com/INFO" INDEX=1>search</a>
  47. <a HREF="wais://quake.think.com/directory-of-servers.src">describe</a>
  48.  
  49. ...
  50.  
  51. It's easy enough to support the current model for backwards
  52. compatibility, but I think the concept of an index as a type
  53. of link makes more sense than indexes as a type of document.
  54.  
  55. Thoughts?
  56.  
  57. Dan
  58.  
  59.  
  60.  
  61.